if ( strcmp( fmp->key, "HEART_RATE") == 0) {
wpt->heartrate = atoi(s);
} else
+ if ( strcmp( fmp->key, "CADENCE") == 0) {
+ wpt->cadence = atoi(s);
+ } else
if ( strcmp( fmp->key, "PATH_DISTANCE_KM") == 0 ) {
/* Ignored on input */
} else {
if (strcmp(fmp->key, "HEART_RATE") == 0) {
writebuff(buff, fmp->printfc, wpt->heartrate);
} else
+ /* CADENCE CONVERSION***********************************************/
+ if (strcmp(fmp->key, "CADENCE") == 0) {
+ writebuff(buff, fmp->printfc, wpt->cadence);
+ } else
/* TIME CONVERSIONS**************************************************/
if (strcmp(fmp->key, "EXCEL_TIME") == 0) {
/* creation time as an excel (double) time */